home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 48
/
Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso
/
Aminet
/
hard
/
drivr
/
ScanTek4_6.lha
/
ScanTek
/
Rexx
/
ST2ArtEffect.strx
< prev
next >
Wrap
Text File
|
1997-06-08
|
665b
|
40 lines
/*
* $VER: ST2ArtEffect.strx 1.0 (29.05.97) Waldemar Zöhner
*
* Requirements: ScanTek V3.0 or higher
* ArtEffekt 2.0 or higher
*
* Description: Load the last scanned image direct into ArtEffekt.
*
* Uses: RC contains the Errorlevel of each ScanTek command
* SCANTEK.LASTERROR contains the related error string
* RESULT contains the result of some ScanTek command
*
*/
Options FailAt 100
Options Results
Address SCANTEK1
GetImageName
IF rc > 0
THEN
DO
say SCANTEK.LASTERROR
EXIT
END;
say 'GetImageName Result is 'Result
Address "ArtEffect"
loadpic Result
EXIT